github.com/google/go-cmp/cmp.diffStats.NumModified (field)

11 uses

	github.com/google/go-cmp/cmp (current package)
		report_compare.go#L429: 			lastStats(2).NumModified++
		report_slices.go#L427: 		nx := appendChunks(vx.Slice(0, ds.NumIdentical+ds.NumRemoved+ds.NumModified), diffRemoved)
		report_slices.go#L429: 		ny := appendChunks(vy.Slice(0, ds.NumIdentical+ds.NumInserted+ds.NumModified), diffInserted)
		report_slices.go#L471: 			lastStats('!').NumModified++
		report_slices.go#L564: 		nx := ds.NumIdentical + ds.NumRemoved + ds.NumModified
		report_slices.go#L565: 		ny := ds.NumIdentical + ds.NumInserted + ds.NumModified
		report_text.go#L371: 	NumModified  int
		report_text.go#L380: 	return s.NumRemoved + s.NumInserted + s.NumModified
		report_text.go#L389: 	s.NumModified += ds.NumModified
		report_text.go#L402: 	counts := [...]int{s.NumIgnored, s.NumIdentical, s.NumRemoved, s.NumInserted, s.NumModified}